home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _PathSplit.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  204 b   |  5 lines

  1. #include <file.au3>
  2. #include <array.au3>
  3. Dim $szDrive, $szDir, $szFName, $szExt
  4. $TestPath = _PathSplit(@ScriptFullPath, $szDrive, $szDir, $szFName, $szExt)
  5. _ArrayDisplay($TestPath,"Demo _PathSplit()")